home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmRec
- BorderStyle = 3 'Fixed Dialog
- Caption = "Record"
- ClientHeight = 4695
- ClientLeft = 2325
- ClientTop = 2775
- ClientWidth = 6120
- Height = 5100
- Icon = "frmRec.frx":0000
- Left = 2265
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4695
- ScaleWidth = 6120
- ShowInTaskbar = 0 'False
- Top = 2430
- Width = 6240
- Begin VB.TextBox txtIndex
- BackColor = &H00C0C0C0&
- Height = 285
- Left = 4680
- Locked = -1 'True
- TabIndex = 5
- TabStop = 0 'False
- Top = 90
- Width = 1365
- End
- Begin VB.TextBox txtMessage
- BackColor = &H00FFFFFF&
- Height = 1995
- Left = 90
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 2
- Top = 2610
- Width = 5955
- End
- Begin VB.TextBox txtSubject
- BackColor = &H00FFFFFF&
- Height = 285
- Left = 90
- TabIndex = 1
- Top = 2250
- Width = 5955
- End
- Begin VB.TextBox txtFrom
- BackColor = &H00FFFFFF&
- Height = 285
- Left = 90
- TabIndex = 3
- Top = 990
- Width = 2895
- End
- Begin VB.TextBox txtTo
- BackColor = &H00FFFFFF&
- Height = 285
- Left = 90
- TabIndex = 0
- Top = 1620
- Width = 2895
- End
- Begin VB.TextBox txtDate
- BackColor = &H00C0C0C0&
- Height = 285
- Left = 90
- Locked = -1 'True
- TabIndex = 4
- TabStop = 0 'False
- Top = 360
- Width = 2895
- End
- Begin VB.Label Label5
- BackStyle = 0 'Transparent
- Caption = "If record fields are changed, then closing window will save record."
- Height = 645
- Left = 4320
- TabIndex = 10
- Top = 450
- Width = 1725
- End
- Begin VB.Label Label4
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Subject"
- Height = 195
- Left = 90
- TabIndex = 9
- Top = 1980
- Width = 540
- End
- Begin VB.Label Label3
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "From"
- Height = 195
- Left = 90
- TabIndex = 8
- Top = 720
- Width = 345
- End
- Begin VB.Label Label2
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "To"
- Height = 195
- Left = 90
- TabIndex = 7
- Top = 1350
- Width = 195
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Date"
- Height = 195
- Left = 90
- TabIndex = 6
- Top = 90
- Width = 345
- End
- Attribute VB_Name = "frmRec"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- dirty = False
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- On Error Resume Next
- If frmRec.Visible = True Then Cancel = -1
- frmRec.Hide
- On Error GoTo 0
- On Error Resume Next
- End Sub
- Private Sub txtFrom_Change()
- dirty = True
- End Sub
- Private Sub txtMessage_Change()
- dirty = True
- End Sub
- Private Sub txtSubject_Change()
- dirty = True
- End Sub
- Private Sub txtTo_Change()
- dirty = True
- End Sub
- Private Sub txtTo_GotFocus()
- dirty = False
- End Sub
-